home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-09-20 | 683 b | 38 lines |
- #!/bin/make -f
- # @(#)NOTES/Makefile 1.1 9/20/92 16:56:24
- # Makefile for the smail NOTES directory
- #
- # Copyright (C) 1987, 1988 Ronald S. Karr and Landon Curt Noll
- # Copyright (C) 1992 Ronald S. Karr
- #
- # See the file COPYING, distributed with smail, for restriction
- # and warranty information.
-
- SHELL=/bin/sh
- MAKE=make
- GET=sccs get
- AR=ar
- LINT=lint
- CLEAN=sccs clean
- MK=$(MAKE) -${MAKEFLAGS}
- SRC_PREFIX=
-
- ROOT=../..
- NOTESSRC=
- MISCSRC=Makefile NFS-BUILD SIMPLE.DOMAIN SMART-HOST
- SRC=${NOTESSRC} ${MISCSRC}
-
- all install depend clean clobber:
-
- sources: ${SRC}
-
- ${SRC}:
- ${GET} $@
-
- names:
- @for i in ${SRC}; do echo ${SRC_PREFIX}$$i; done
-
- nuke: clobber
- -${CLEAN}
- -${GET} Makefile
-